home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib8 / v_10_04 / 1004010c < prev    next >
Encoding:
Text File  |  1995-11-01  |  148 b   |  8 lines

  1. /* labs function */
  2. #include <stdlib.h>
  3.  
  4. long (labs)(long i)
  5.     {    /* compute absolute value of long argument */
  6.     return ((i < 0) ? -i : i);
  7.     }
  8.